home *** CD-ROM | disk | FTP | other *** search
- @echo off
- REM GOPHER.BAT
- REM Version 1.0
- REM Copyright (c) 1991 by D&W Systems
- REM
- REM Requires: Bookmark.Exe and Setpath.Bat from D&W Systems
- REM ugopher.exe Distribution by the OAC
- REM
- cls
- if not exist c:\dwsnet\bookmark.exe goto LABEL
- c:\dwsnet\bookmark.exe
- :LABEL
- c:
- cd \dwsnet
- if '%1 == ' goto NOPARAMS
- REM Don't know how many params user might pass to it, So I'll just do all.
- REM Probably overkill by four or five.
- ugopher.exe %1 %2 %3 %4 %4 %6 %7 %8 %9
- goto FINISH
- :NOPARAMS
- ugopher.exe cwis.uth.tmc.edu
- :FINISH
- if not exist c:\dwsnet\bookmark.exe goto END
- c:\dwsnet\bookmark.exe/r
- if not exist c:\dwsnet\setpath.bat goto END
- c:\dwsnet\setpath.bat
- :END
-